home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / a_to_d / dbplus2 / qryproj.dpr < prev    next >
Encoding:
Text File  |  1996-09-15  |  166 b   |  14 lines

  1. program Qryproj;
  2.  
  3. uses
  4.   Forms,
  5.   Qrymain in 'QRYMAIN.PAS' {Form1};
  6.  
  7. {$R *.RES}
  8. begin
  9.   Application.CreateForm(TForm1, Form1);
  10.   Application.Run;
  11. end.
  12.  
  13.  
  14.